From: Richard M. Stallman Date: Thu, 11 Mar 1993 21:36:22 +0000 (+0000) Subject: (tigetstr): Add dummy definition to make Emacs link again. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96914 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=323e7e53e35a17765e92443b50b21398062bd05b;p=emacs.git (tigetstr): Add dummy definition to make Emacs link again. --- diff --git a/src/term.c b/src/term.c index bf3087e0b9f..b8bf719f9b6 100644 --- a/src/term.c +++ b/src/term.c @@ -1299,6 +1299,10 @@ term_get_fkeys (address) * Various mappings to try and get a better fit. */ { +/* ??? I have never heard of tigetstr, and it does not exist. + This at least enables the code below to compile -- rms. */ +#define tigetstr(foo) 0 + #define CONDITIONAL_REASSIGN(cap1, cap2, sym) \ if (!tigetstr(cap1) && tgetstr(cap2)) \ Fdefine_key (Vfunction_key_map, \